home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / kh_gdi.zip / GENERAL / STRDUP.CPP < prev    next >
C/C++ Source or Header  |  1996-05-24  |  222b  |  13 lines

  1. #include <string.h>
  2. #include "general\strdup.h"
  3.  
  4. char* str_dup(const char* s)
  5.     {
  6.     char* ret = NULL;
  7.     if(s != NULL)
  8.           {
  9.           ret = new char[strlen(s) + 1];
  10.           strcpy(ret, s);
  11.           }
  12.      return ret;
  13.     }